home *** CD-ROM | disk | FTP | other *** search
- ; lbtn,rtbtn,btbtn,lfmot,rtmot,upmot,dnmot,hsen,vsen
- BEGIN LeftB,MidB,RightB,LeftM,RightM,UpM,DownM,190,40
-
- ;------------- Left Button --------------
- ;-------- Popup Menu Selection ----------
- LeftB: EXECUTE RETURN
-
- ;------------ Middle Button -------------
- MidB: EXECUTE ESCAPE
-
- ;------------ Right Button --------------
- RightB: EXECUTE ESCAPE
-
- ;------------ Left Motion ---------------
- Leftm: EXECUTE LEFT
-
- ;------------ Right Motion --------------
- RightM: MATCH 12,52,03,"F2",MENU2,RightM1 ;"F2"
- RightM1: MATCH 12,52,03," ",MENU3,RightM2 ;"F2"
- RightM2: MATCH 12,52,NORMAL,"F2",MENU2,RightM3 ;"F2"
- RightM3: MATCH 12,52,NORMAL," ",MENU3,RightM4 ;"F2"
- RightM4: EXECUTE MAIN
-
- ;------------ Up Motion -----------------
- UpM: EXECUTE UP
-
- ;------------ Down Motion ---------------
- DownM: EXECUTE DOWN
-
- ;------------- MAIN MENU ----------------
-
- main: popup 4,50,BOLD
- text "╟Cancel this Menu"
- text "║Enter "
- ;text "║ F1 "
- text "║ F2 "
- text "║ F3 "
- text "║ F4 "
- text "║ F5 "
- text "║ F6 "
- text "║ F7 "
- text "║ F8 "
- text "║ F9 "
- text "║ F10 "
- text "║ "
- text "║ "
- text "║ "
- text "║ESCAPE "
- text "║PgUp - Previous Page "
- text "║PgDn - Next Page "
- text "║Home - Top of List "
- text "║End - Bottom of List "
- text "║ LEFT Mouse Botton to Select"
- ;select 2, 2,29,F1
- select 1,2,29,NUL
- select 2,2,29,RETURN
- select 3,2,29,F2
- select 4,2,29,F3
- select 5,2,29,F4
- select 6,2,29,F5
- select 7,2,29,F6
- select 8,2,29,F7
- select 9,2,29,F8
- select 10,2,29,F9
- select 11,2,29,F10
- select 12,2,29,NUL
- select 13,2,29,NUL
- select 14,2,29,NUL
- select 15,2,29,ESCAPE
- select 16,2,29,PGUP
- select 17,2,29,PGDN
- select 18,2,29,HOME
- select 19,2,29,END
- pend
-
- MENU2: popup 9,50,BOLD
- text "╟Cancel this menu "
- text "║Enter"
- text "║ "
- text "║ F2 "
- text "║ "
- text "║ "
- text "║ F4 "
- text "║ "
- text "║ "
- text "║ESCAPE "
- text "║PgUp - Previous Page "
- text "║PgDn - Next Page "
- text "║Home - Top of List "
- text "║End - Bottom of List "
- text "║ LEFT Mouse Botton to Select"
- select 1,2,29,NUL
- select 2,2,29,RETURN
- select 3,2,29,NUL
- select 4,2,29,F2
- select 5,2,29,NUL
- select 6,2,29,NUL
- select 7,2,29,F4
- select 8,2,29,NUL
- select 9,2,29,NUL
- select 10,2,29,ESCAPE
- select 11,2,29,PGUP
- select 12,2,29,PGDN
- select 13,2,29,HOME
- select 14,2,29,END
- pend
- MENU3: popup 9,50,BOLD
- text "╟Cancel this menu "
- text "║Enter"
- text "║ "
- text "║ "
- text "║ "
- text "║ "
- text "║ F4 "
- text "║ "
- text "║ "
- text "║ESCAPE "
- text "║PgUp - Previous Page "
- text "║PgDn - Next Page "
- text "║Home - Top of List "
- text "║End - Bottom of List "
- text "║ LEFT Mouse Botton to Select"
- select 1,2,29,NUL
- select 2,2,29,RETURN
- select 3,2,29,NUL
- select 4,2,29,NUL
- select 5,2,29,NUL
- select 6,2,29,NUL
- select 7,2,29,F4
- select 8,2,29,NUL
- select 9,2,29,NUL
- select 10,2,29,ESCAPE
- select 11,2,29,PGUP
- select 12,2,29,PGDN
- select 13,2,29,HOME
- select 14,2,29,END
- pend
- ;-------- KEY BOARD DEFINITIONS ---------
-
- NUL: NOTHING
- RETURN: TYPE 13
- ESCAPE: TYPE 27
- HOME: TYPE 0,71
- END: TYPE 0,79
- PGUP: TYPE 0,73
- PGDN: TYPE 0,81
- UP: TYPE 0,72
- DOWN: TYPE 0,80
- LEFT: TYPE 0,75
- RIGHT: TYPE 0,77
- F1: TYPE 0,59
- F2: TYPE 0,60
- F3: TYPE 0,61
- F4: TYPE 0,62
- F5: TYPE 0,63
- F6: TYPE 0,64
- F7: TYPE 0,65
- F8: TYPE 0,66
- F9: TYPE 0,67
- F10: TYPE 0,68
-